python里怎么查看数据类型

您所在的位置:网站首页 python 判断数据类型 python里怎么查看数据类型

python里怎么查看数据类型

#python里怎么查看数据类型| 来源: 网络整理| 查看: 265

python里怎么查看数据类型?

python里可以通过type()函数来查看数据类型。

Python 内置函数 Python 内置函数

Python type() 函数如果你只有第一个参数则返回对象的类型,三个参数返回新的类型对象。

isinstance() 与 type() 区别: type() 不会认为子类是一种父类类型,不考虑继承关系。 isinstance() 会认为子类是一种父类类型,考虑继承关系。

如果要判断两个类型是否相同推荐使用 isinstance()。

以下是 type() 方法的语法:

type(object) type(name, bases, dict)

参数

name:类的名称。

bases:基类的元组。

dict:字典,类内定义的命名空间变量。

返回值

一个参数返回对象类型, 三个参数,返回新的类型对象。

实例

以下展示了使用 type 函数的实例:

# 一个参数实例 >>> type(1) >>> type('school') >>> type([2]) >>> type({0:'zero'}) >>> x = 1 >>> type( x ) == int # 判断类型是否相等 True # 三个参数 >>> class X(object): ... a = 1 ... >>> X = type('X', (object,), dict(a=1)) # 产生一个新的类型 X >>> X

type() 与 isinstance()区别:

class A: pass class B(A): pass isinstance(A(), A) # returns True type(A()) == A # returns True isinstance(B(), A) # returns True type(B()) == A # returns False

推荐:《python教程》

以上就是python里怎么查看数据类型的详细内容,更多请关注jquery中文网其它相关文章!

本文原创发布jQuery中文网,转载请注明出处,感谢您的尊重!

您可能感兴趣的文章: python里怎么查看数据类型 python序列中可变数据类型有什么 python怎么看数据类型 Python小白的福利之基本数据类型 python如何查看数据类型 django如何调用数据库数据 django适合大型网站开发么 input python怎么用 django适合什么网站 django能用来开发大型网站吗



【本文地址】


今日新闻


推荐新闻


CopyRight 2018-2019 办公设备维修网 版权所有 豫ICP备15022753号-3